Welcome![Sign In][Sign Up]
Location:
Search - map stl

Search list

[Windows DevelopCH_STL

Description: 详细介绍STL,包括vector,deque,list,set和map的实现原理和使用方法-Details of STL, including the vector, deque, list, set and map to achieve the principles and use
Platform: | Size: 3710976 | Author: 向前 | Hits:

[Data structsSTLinusagemap

Description: map中由于它内部有序,由红黑树保证,因此很多函数执行的时间复杂度都是log2N的,如果用map函数可以实现的功能,而STL Algorithm也可以完成该功能,建议用map自带函数,效率高一些。 -map due to its internal and orderly to ensure the tree by the red and black, many functions of the time complexity of the implementation are log2N, if map function can be achieved with the function of the STL Algorithm can also complete the features, it is recommended to use its own map function, higher efficiency.
Platform: | Size: 12288 | Author: 邹氏 | Hits:

[VC/MFCEffective_STL

Description: 标准模板库,在C++标准中,STL被组织为下面的13个头文 件:<algorithm>、<deque>、<functional>、<iterator>、<vector>、<list>、<map>、 <memory>、<numeric>、<queue>、<set>、<stack>和<utility>。-Standard Template Library, in the C++ standard, STL are organized for the following 13 heads documents: <algorithm> , <deque> , <functional> , <iterator> , <vector> , <list> , <map> , <memory> , <numeric> , <queue> , <set> , <stack> And <utility> .
Platform: | Size: 1225728 | Author: dabing | Hits:

[Otherhashmap

Description: 哈希表的实现 hashmap.h - declaration of class HashMap hashmap.cpp - definition of class HashMap hash-driver.cpp demonstrates use of class HashMap and its member functions.-A Hash Table Implementation The following header file and implementation file declares and defines a template hash map class. The class takes four template parameters. The first is the key type and the second is the value type. The third parameter specifies the hash function and the fourth parameter specifies how to compare two objects of the key s data type. • hashmap.h- declaration of class HashMap • hashmap.cpp- definition of class HashMap The return type of the search member function of class HashMap is an STL class that we have not yet encountered. Function search returns an object of type pair. Class pair is an STL class that contains two data members. These members are named first and second. This class is used often by functions that need to return more than one piece of data. The search member function needs to return whether or not the item was found and what position it was found in. Thus, function search returns an object of type class pair<bool, int>
Platform: | Size: 667648 | Author: 刘亚 | Hits:

[Windows Developwrk

Description: 利用STL中的MAP和VECTOR实现的一个多节点树-The use of STL in the MAP and the VECTOR to achieve a multi-node tree
Platform: | Size: 18432 | Author: Waxgin | Hits:

[STLinclude

Description: 一个二叉树算法的MAP的template,使用与分配内存,经测试(顺序插入256万条数据)效率比STL高5倍。乱序插入256万条数据,是stl的2倍。-A B-Tree Map template,It 5 times faster than the stl::Map.(Test insert 2.56M datas in sequential order. 2 times faster in random order.)
Platform: | Size: 7168 | Author: Zephyr Shannon | Hits:

[ConsoleMapDemo_20100514

Description: STL库中map的用法,教你如何使用map来添加和删除元素-STL map library usage, teach you how to use the map to add and delete elements
Platform: | Size: 6144 | Author: 周峰 | Hits:

[Windows DevelopShowVBStrArr

Description: API函数原型测试——DLL中返回字符串数组的函数原型(导出函数的原型不用vector<wstring>),演示用变体/安全数组代替vector/map等STL容器制作标准DLL(这里是C的接口、C++的实现)的一般方法,在vb/vc中测试通过。-API function prototypes- DLL returns a string array of function prototypes (not export the function prototype vector <wstring> ), Demonstrate use Variations/security array instead of vector/map production standards such as STL containers DLL (where the interface is C, C++ implementation of) the general approach, in vb/vc in the test.
Platform: | Size: 4762624 | Author: hanxiaohua | Hits:

[Linux-Unixdbinit_stl_views-1_03

Description: linux下gdb调试工具扩展脚本,可以查看stl模板类的信息-linux gdb debug stl list map
Platform: | Size: 7168 | Author: mhzlg | Hits:

[Graph RecognizeCpp.Primer.The.Third.Edition

Description: 本书第二版和第三版之间的变化非常大其中最值得注意的是C++已经通过了国际标 准化这不但为语言增加了新的特性比如异常处理运行时刻类型识别RTTI 名字空 间内置布尔数据类型新的强制转换方式而且还大量修改并扩展了现有的特性比如模 板template 支持面向对象object-oriented 和基于对象object-based 程序设计所需 要的类class 机制嵌套类型以及重载函数的解析机制也许更重要的是一个覆盖面非 常广阔的库现在成了标准C++的一部分其中包括以前称为STL 标准模板库的内容新 的string 类型一组顺序和关联容器类型比如vector list map 和set 以及在这些类型 上进行操作的一组可扩展的泛型算法generic algorithm 都是这个新标准库的特性本书 不但包括了许多新的资料而且还阐述了怎样在C++中进行程序设计的新的思考方法简而 言之实际上不但C++已经被重新创造本书第三版也是如此-econd edition and third edition of the book vary greatly among the most noteworthy of which is C has passed the international standards This standardization not only added a new language features such as exception handling run-time type identification RTTI name space Boolean data type built between the new cast but also a lot of ways to modify and extend the existing features such as model Board template support object-oriented object-oriented and object-based object-based programming required Nested class mechanism to class types and overloaded functions resolution mechanism may be more important, a non-coverage Often broad standard C library is now a part of which includes previously known as the contents of the Standard Template Library STL New The string type of a set of container types such order and the associated vector list map and set well in these classes Type Operate on a set of generic algorithms and scalable generic algorithm are the new features of the standard li
Platform: | Size: 3873792 | Author: xxw | Hits:

[Data structsEurope_travel

Description: 利用dijkstra算法实现城市间的最短路径和最小花费,利用stl模版类map实现-Dijkstra algorithm using the shortest path between cities and the smallest cost, the use of stl map implementation template class
Platform: | Size: 4096 | Author: | Hits:

[VC/MFCwords

Description: 一个基于STL的小程序。由stl中的map来实现。功能是统计一个文本文件中的所有单词个数。以及列出所有重复单词。学习stl的好例子哦!-A small program based on STL. The map from the stl to achieve. Function is a text file statistics all the words in number. And a list of all the repeated words. Good example of learning stl Oh!
Platform: | Size: 10240 | Author: liuli | Hits:

[VC/MFCGC

Description: 一个简单垃圾回收器(GC),运用stl 中map,对动态分配的内存,进行自动回收 -A simple garbage collector (GC), in the use of stl map, on the dynamic allocation of memory, automatic recovery
Platform: | Size: 1263616 | Author: oriented | Hits:

[Data structsstx-btree-0.8.3

Description: 用b+树算法实现的map,set容器,查找速度超快-map,set container base on B+tree algorithm 。can search faster than the STL container base on RBtree algorithm
Platform: | Size: 1284096 | Author: 冯刚 | Hits:

[STLSTL_agtbouns_Example

Description: STL的map的一个例子agtbouns-An example of the STL map agtbouns
Platform: | Size: 4096 | Author: augusdi | Hits:

[STLSTL_map

Description: STL中map用法详解 STL中map用法详解-Detailed map uses the STL STL STL Detailed description of the map Detailed map usage
Platform: | Size: 98304 | Author: augusdi | Hits:

[STLGuider

Description: STL功能文档,方便STL实现编程,进行map,set,vector等的使用-STL function documentation to facilitate the implementation of the STL programming, to map, set, vector, etc. Use
Platform: | Size: 18061312 | Author: lijiawei | Hits:

[STLmapInSTL

Description: STL中map用法详解-C++名库,说的很详细看看吧-Detailed map use the STL-C++ library name, said, very detailed look at it
Platform: | Size: 36864 | Author: 青林 | Hits:

[STLParaManager

Description: 利用STL中MAP容器写的参数工具类及其使用示例:可以方便地从文件中读取参数,将参数保存到文件,在自己程序中随时随地存取参数。-Written using STL containers in the MAP parameter tools and their use example: you can easily read from the file parameter, the parameter to a file, the program anytime, anywhere access to their own parameters.
Platform: | Size: 893952 | Author: mikeywj | Hits:

[STLcscen

Description: 一个场景管理器、自己写的 、用到了 STL的 MAP 、也很简单 很方便 、-A scene, write your own use STL MAP is also very simple and very convenient.
Platform: | Size: 2503680 | Author: 何江 | Hits:
« 1 2 3 45 »

CodeBus www.codebus.net